home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funexit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  310 b   |  22 lines

  1. /*
  2. \funcref{fun\_exit}{void fun\_exit ()}
  3.     {}
  4.     {}
  5.     {pop()}
  6.     {}
  7.     {funexit.c}
  8.     {
  9.  
  10.         This function places the {\em int} value of the return register {\em
  11.         reg} into the global variable {\em retval}.
  12.  
  13.     }
  14. */
  15.  
  16. #include "icm-exec.h"
  17.  
  18. void fun_exit ()
  19. {
  20.     retval = reg.vu.intval;
  21. }
  22.